66da3baa5326e8df9c4a087ee86e62d58aa6fe32,modules/core/portal-log-bridge/src/com/liferay/portal/log/bridge/internal/PortalLogListenerImpl.java,PortalLogListenerImpl,logged,#LogEntry#,53

Before Change


		Bundle bundle = logEntry.getBundle();

		String symbolicName = StringUtil.replace(
			bundle.getSymbolicName(), StringPool.PERIOD, StringPool.UNDERLINE);

		Log log = LogFactoryUtil.getLog("osgi.logging." + symbolicName);

After Change


		Bundle bundle = extendedLogEntry.getBundle();

		_log(
			bundle.getSymbolicName(), extendedLogEntry.getLevel(),
			bundle.getBundleId(), extendedLogEntry.getMessage(),
			context, extendedLogEntry.getException());
	}